home *** CD-ROM | disk | FTP | other *** search
/ Jasper Idol Series 1: Taeko Nishino / Jasper Idol Series 1: Taeko Nishino - Disc 2.iso / DATA / PHOTO-A / 00045.ls < prev    next >
Encoding:
Text File  |  1995-06-18  |  1.2 KB  |  56 lines

  1. on CHECKM
  2.   global XXX
  3.   if the soundBusy of 1 = 1 then
  4.     nothing()
  5.   else
  6.     sound playFile 1, XXX
  7.   end if
  8. end
  9.  
  10. on cursorset
  11.   cursor(-1)
  12.   set the cursor of sprite 7 to 280
  13.   set the cursor of sprite 8 to 280
  14.   set the cursor of sprite 9 to 280
  15.   set the cursor of sprite 10 to 280
  16.   set the cursor of sprite 14 to 280
  17.   set the cursor of sprite 15 to 280
  18.   set the cursor of sprite 16 to 280
  19.   set the cursor of sprite 17 to 280
  20. end
  21.  
  22. on cursorset2
  23.   cursor(-1)
  24.   set the cursor of sprite 2 to 280
  25.   set the cursor of sprite 3 to 280
  26.   set the cursor of sprite 4 to 280
  27.   set the cursor of sprite 5 to 280
  28.   set the cursor of sprite 6 to 280
  29.   set the cursor of sprite 20 to 280
  30.   set the cursor of sprite 21 to 280
  31.   set the cursor of sprite 22 to 280
  32.   set the cursor of sprite 23 to 280
  33.   set the cursor of sprite 24 to 280
  34.   set the cursor of sprite 25 to 280
  35. end
  36.  
  37. on Scheck
  38.   if the volume of sound 1 = 0 then
  39.     go("SL0")
  40.   else
  41.     if the volume of sound 1 = 100 then
  42.       go("SL2")
  43.     else
  44.       if the volume of sound 1 = 180 then
  45.         go("SL4")
  46.       else
  47.         if the volume of sound 1 = 250 then
  48.           go("SL6")
  49.         else
  50.           go(the frame)
  51.         end if
  52.       end if
  53.     end if
  54.   end if
  55. end
  56.